*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:#f8f8f8;
}

/* Navbar */

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:white;
}

nav ul{
    display:flex;
    list-style:none;
    gap:30px;
}

nav a{
    text-decoration:none;
    color:#333;
    font-weight:500;
}

.logo h2{
    color:#e84393;
}

/* Hero */

.hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:60px 8%;
    gap:50px;
}

.hero-text{
    flex:1;
}

.hero-text h1{
    font-size:55px;
    margin-bottom:20px;
    color:#222;
}

.hero-text p{
    margin-bottom:30px;
    color:#666;
    line-height:1.8;
}

.btn{
    background:#e84393;
    color:white;
    text-decoration:none;
    padding:12px 25px;
    border-radius:5px;
}

.hero-image{
    flex:1;
}

.hero-image img{
    width:100%;
    border-radius:15px;
}

/* Services */

.services{
    display:flex;
    gap:30px;
    padding:70px 8%;
    background:white;
}

.card{
    flex:1;
    text-align:center;
    padding:30px;
}

.card h3{
    margin-bottom:15px;
}

/* About */

.about{
    display:flex;
    align-items:center;
    gap:50px;
    padding:80px 8%;
}

.about-img{
    flex:1;
}

.about-img img{
    width:100%;
    border-radius:10px;
}

.about-text{
    flex:1;
}

.about-text span{
    color:#e84393;
    font-weight:600;
}

.about-text h2{
    margin:15px 0;
    font-size:40px;
}

.about-text p{
    color:#666;
    margin-bottom:20px;
}

.about-text ul li{
    margin-bottom:10px;
}

/* Produk */

.produk{
    padding:80px 8%;
    text-align:center;
}

.produk h2{
    margin-bottom:40px;
    font-size:40px;
}

.produk-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.produk-card{
    background:white;
    padding:20px;
    border-radius:10px;
    box-shadow:0 0 10px rgba(0,0,0,0.1);
}

.produk-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:10px;
}

.produk-card h3{
    margin-top:15px;
}

.produk-card p{
    color:#e84393;
    font-weight:600;
    margin:10px 0;
}

.produk-card button{
    padding:10px 20px;
    border:none;
    background:#e84393;
    color:white;
    border-radius:5px;
    cursor:pointer;
}

/* Contact */

.contact{
    text-align:center;
    padding:80px 8%;
    background:white;
}

.contact h2{
    margin-bottom:20px;
}

/* Footer */

footer{
    text-align:center;
    background:#222;
    color:white;
    padding:20px;
}

/* Responsive */

@media(max-width:768px){

    .hero{
        flex-direction:column;
    }

    .about{
        flex-direction:column;
    }

    .produk-grid{
        grid-template-columns:1fr;
    }

    .services{
        flex-direction:column;
    }

    header{
        flex-direction:column;
        gap:20px;
    }
}